null pointer - traducción al árabe
DICLIB.COM
Herramientas lingüísticas IA
Ingrese una palabra o frase en cualquier idioma 👆
Idioma:     

Traducción y análisis de palabras por inteligencia artificial

En esta página puede obtener un análisis detallado de una palabra o frase, producido utilizando la mejor tecnología de inteligencia artificial hasta la fecha:

  • cómo se usa la palabra
  • frecuencia de uso
  • se utiliza con más frecuencia en el habla oral o escrita
  • opciones de traducción
  • ejemplos de uso (varias frases con traducción)
  • etimología

null pointer - traducción al árabe

A VALUE INDICATING THAT A POINTER DOES NOT REFER TO A VALID OBJECT
Null reference; NullPointerException; NULL pointer; Java.lang.NullPointerException; Null pointer exception; Billion-dollar mistake; Null pointer error

null pointer         
مؤشر لا شيء
null character         
CONTROL CHARACTER WHOSE BITS ARE ALL 0
Null terminated; Terminating null character; Null terminator; Control-@; Ctrl-@; \0; Null (Character); Null-character; Null terminating character; ␀; Chr(0); ^@; U+0000; Null byte injection; ASCII 0; NUL (character); NUL character; Null byte; \x0; \x00; Null (character)
رمز " لا عمل "
Null         
WIKIMEDIA DISAMBIGUATION PAGE
NULL; Null (computer programming); Null value; Null (computing); Null (Computing); Null (computer); Null (disambiguation); User:SideTime; (null); Nil (programming languages); Null (EP); Null values
لاغ ، باطل

Definición

/dev/null
/dev-nuhl/ [The Unix null device, used as a data sink] A notional "black hole" in any information space being discussed, used, or referred to. A controversial posting, for example, might end "Kudos to rasputin@kremlin.org, flames to /dev/null". See bit bucket. [Jargon File]

Wikipedia

Null pointer

In computing, a null pointer or null reference is a value saved for indicating that the pointer or reference does not refer to a valid object. Programs routinely use null pointers to represent conditions such as the end of a list of unknown length or the failure to perform some action; this use of null pointers can be compared to nullable types and to the Nothing value in an option type.

A null pointer should not be confused with an uninitialized pointer: a null pointer is guaranteed to compare unequal to any pointer that points to a valid object. However, depending on the language and implementation, an uninitialized pointer may not have any such guarantee. It might compare equal to other, valid pointers; or it might compare equal to null pointers. It might do both at different times; or the comparison might be undefined behaviour.